home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / containers / VBox.as < prev   
Text File  |  2014-03-27  |  465b  |  24 lines

  1. package mx.containers
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public class VBox extends Box
  8.    {
  9.       
  10.       mx_internal static const VERSION:String = "3.0.0.0";
  11.        
  12.       
  13.       public function VBox()
  14.       {
  15.          super();
  16.          mx_internal::layoutObject.direction = BoxDirection.VERTICAL;
  17.       }
  18.       
  19.       override public function set direction(param1:String) : void
  20.       {
  21.       }
  22.    }
  23. }
  24.